tests: Add test for latest patch
authorBenjamin Otte <otte@redhat.com>
Thu, 1 May 2014 17:49:47 +0000 (19:49 +0200)
committerBenjamin Otte <otte@redhat.com>
Mon, 5 May 2014 13:48:02 +0000 (15:48 +0200)
This tesst infloops without it.

testsuite/css/parser/Makefile.am
testsuite/css/parser/string-values.css [new file with mode: 0644]

index 873a048f45cc32c209809eb1144868c3e2b42236..846b93833e7783add2c468f4c306abeb76b2e4a6 100644 (file)
@@ -333,6 +333,7 @@ test_data = \
        single-slash.css \
        single-slash.errors\
        single-slash.ref.css \
+       string-values.css \
        test.png \
        transition.css \
        transition.ref.css \
diff --git a/testsuite/css/parser/string-values.css b/testsuite/css/parser/string-values.css
new file mode 100644 (file)
index 0000000..faba2f2
--- /dev/null
@@ -0,0 +1,27 @@
+n {
+  font-family: "\A ";
+}
+
+r {
+  font-family: "\C ";
+}
+
+f {
+  font-family: "\D ";
+}
+
+a {
+  font-family: "\"";
+}
+
+b {
+  font-family: "\'";
+}
+
+c {
+  font-family: "'";
+}
+
+d {
+  font-family: "\\";
+}